Creating a global variable on the fly. [PHP ENCRYPTION]

Posted by stormdrain on Stack Overflow See other posts from Stack Overflow or by stormdrain
Published on 2010-05-09T01:57:35Z Indexed on 2010/05/09 2:08 UTC
Read the original article Hit count: 252

Filed under:
|

Is there a way to dynamically create constant variables on the fly?

The idea is that upon logging into the system, a user would be asked to upload a small text file that would be fread, and assigned to a var that would be accessible throughout the system.

If this is possible, just to be clear, would this variable then only be accessible to that user and only while the session is alive?

Security being the main concern here, would it be more practical to store the var in a session variable?

The plan:

Data in the db will be encrypted via mcrypt, and the key will be stored on USB thumbdrives. The user will insert the thumbdrive when going to access the system. Upon logging in, the app will prompt the user to upload the key. They will navigate to the thumbdrive and key. Via fopen and fread, the key will be assigned to a global var which will then allow access to encrypted data, and will be used to encrypt new info being entered to the db. When the user logs out, or session times out, the global var will become empty.

Thanks!

© Stack Overflow or respective owner

Related posts about php

Related posts about encryption